home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Programming / ADOS Guide / ADOS commands / Request File < prev    next >
Text File  |  1998-02-16  |  618b  |  33 lines

  1.                          --AMIGADOS GUIDE V2.5--
  2.                                REQUESTFILE
  3.  
  4.  
  5.    USE:
  6.    The RequestFile command enables the user to call up a File Requester
  7.    which will let you select any file or directory.
  8.  
  9.    PATH:
  10.    C:
  11.  
  12.    SYSTEM:
  13.    3.0
  14.  
  15.    EXAMPLES:
  16.    1>REQUESTFILE >ENV: FileName TITLE="File Requester 1"
  17.  
  18.    NOTES:
  19.    RequestFile can be integrated with the RequestChoice command thus:
  20.  
  21.    LAB Start
  22.  
  23.    REQUESTFILE >ENV: FileName TITLE="File Requester 1"
  24.  
  25.    REQUESTCHOICE >ENV: YesNo "" "You chose:$FileName*nDo it
  26.    again?"  "YES" "NO"
  27.  
  28.    IF $YesNo EQ "1"
  29.  
  30.    SKIP start BACK
  31.  
  32.    ENDIF
  33.